home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / gawk-3.000 / gawk-3 / gawk-3.0.0 / test / fsrs.awk < prev    next >
Encoding:
AWK Script  |  1993-10-20  |  111 b   |  9 lines

  1. BEGIN {
  2.        RS=""; FS="\n";
  3.        ORS=""; OFS="\n";
  4.       }
  5. {
  6.         split ($2,f," ")
  7.         print $0;
  8. }
  9.